home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / e-mail / pp-lan / pp-lan.doc < prev    next >
Text File  |  1996-07-10  |  2KB  |  39 lines

  1.                       PPoint LAN Processing System
  2.           Copyright (c) 1993 Harvey Parisien, Kingston, Canada
  3.                                1:249/114
  4.  
  5. PPoint now let's you connect to a network host using PP-LAN.  Your
  6. network host can be connected to the outside world, and you connected
  7. to it using PP-LAN.
  8.  
  9. ------------------------------------------------------------------------
  10. Setup: 
  11.  
  12.       Edit pp-lan.cfg.  It's a documented configuration file.
  13.       Edit your mailer.bat file to just have this one line in it...
  14.  
  15.       @pp-lan
  16. ------------------------------------------------------------------------
  17. What, exactly, does PP-LAN do?
  18.  
  19. It's a replacement for bnu and binkley for Ppoint where the mail comes
  20. from a network server.  It can also be used to fetch packets on a
  21. non-network system that has a full node setup on it, and has packets
  22. waiting for it's points.  Some sysops setup PPoint in a separate
  23. directory and use pp-lan to move the packets to/from Ppoint.
  24.  
  25. ------------------------------------------------------------------------
  26. Misc option...
  27.  
  28. PP-LAN has one command line switch /C.  If you run pp-lan /c it will
  29. check the host server to see if mail is waiting.  If mail is there,
  30. it will exit with an errorlevel of 0, if there is no mail, it will exit
  31. with an errorlevel of 1.  This was designed so that network nodes can
  32. check for mail in a routine batch process.
  33.  
  34. ie:       @echo off
  35.           pp-lan /c
  36.           if errorlevel 1 goto exit
  37.           beep or msgbox "You have mail"... etc.
  38.           :exit
  39.